Favicon

You are here: Home > API Reference > App Distribution > Keystore > Retrieve key store details

Retrieve key store details

Retrieves a specific key store using its unique identifier.

GET
https://api.applivery.io/v1/key-store/{keyStoreKey}
curl -X GET "https://api.applivery.io/v1/key-store/{keyStoreKey}" \
  -H "Authorization: Bearer <YOUR_API_KEY>"
const response = await fetch("https://api.applivery.io/v1/key-store/{keyStoreKey}", {
  method: "GET",
  headers: {
    Authorization: "Bearer <YOUR_API_KEY>",
  },
});

const data = await response.json();
import requests

response = requests.get(
    "https://api.applivery.io/v1/key-store/{keyStoreKey}",
    headers={"Authorization": "Bearer <YOUR_API_KEY>"},
)

data = response.json()

Request

Send your API key in the request header authorization
Example: Authorization: Bearer <token>

keyStoreKey string
required
URL path parameter identifying which key-value store entry to retrieve, update, or delete.
≤ 128 characters · Match pattern: ^^(?!admin)[a-z][a-z0-9-_]+[a-z0-9]$

Responses

200 Response application/json
status boolean required
data object required
key string required
Unique identifier serving as the lookup key for retrieving and managing stored data.
≤ 128 characters · Match pattern: ^^(?!admin)[a-z][a-z0-9-_]+[a-z0-9]$
data object required
Stored value associated with the key containing arbitrary structured data such as configuration settings, user preferences, feature states, or application-specific payloads.
createdBy string required
Identifier referencing the user who initiated resource creation, enabling attribution, accountability tracking, ownership, and establishing audit trail for resource origin and responsibility assignment purposes.
Match pattern: ^[a-fA-F0-9]{24}$
{
    "status": true,
    "data": {
        "key": "string",
        "data": {},
        "createdBy": "string"
    }
}
401 Response application/json
status boolean optional
false
error object optional
code number optional
4004
message string optional
Invalid Token
{
    "status": false,
    "error": {
        "code": 4002,
        "message": "No auth token"
    }
}
404 Response application/json
status boolean optional
false
error object optional
code number optional
3001
message string optional
Entity not found
{
    "status": false,
    "error": {
        "code": 3001,
        "message": "Entity not found"
    }
}